 |
 |
 |
 |
 |
 |
 |
 |
|
It is
possible to accept command line
|
|
 |
|
|
|
arguments.
|
|
|
int main(int argc, char* argv[])
|
|
|
argc
is number of command line arguments (the
|
ARGument Count)
|
|
|
argv[] is a listing of the command line
|
|
arguments.
argv[0] is entire path to the program
|
including its
name. After that, every element
|
|
number less than
argc are command line
|
|
arguments.
|
|